Q3OrientationStyle_New
You can use theQ3OrientationStyle_New
function to create a new orientation style object.
TQ3StyleObject Q3OrientationStyle_New ( TQ3OrientationStyle frontFacingDirection);
frontFacingDirection
- An orientation style value.
DESCRIPTION
TheQ3OrientationStyle_New
function returns, as its function result, a new style object having the orientation style specified by thefrontFacingDirection
parameter. ThefrontFacingDirection
parameter should be one of these values:
kQ3OrientationStyleCounterClockwise kQ3OrientationStyleClockwiseIf a new style object could not be created,Q3OrientationStyle_New
returns the valueNULL
.To change the current orientation style, you must actually draw the style object. You can call
Q3Style_Submit
to draw the style in retained mode orQ3OrientationStyle_Submit
(described next) to draw the style in immediate mode.SEE ALSO
See "Orientation Styles" on page 6-8 for a description of orientation styles.